home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Adobe Graphics & Publishing SDK 1996 December
/
Adobe Graphics & Publishing SDK 1996 December.iso
/
pc
/
pm65sdk
/
sourcecode
/
includes
/
cicolormanagement.h
< prev
next >
Wrap
C/C++ Source or Header
|
1996-11-18
|
820b
|
29 lines
/**[f******************************************************************
* CIClrMgt.h -- CIColorManagement Interface definition
*
* Copyright (c) 1996 Adobe Systems, Inc. All Rights Reserved
*
*
* ABSTRACT:
*
* USAGE:
*
*
*
**f]******************************************************************/
#ifndef __CICLRMGT_H
#define __CICLRMGT_H
#include "pmtypes.h"
class CIColorManagement : public CIInterface {
public:
// get all profiles associated with current pub
// Note: Caller is responsible for freeing the handle if this method is successful,
// via FreeHandle method
virtual PMXErr GetAllSourceProfiles ( PMHandle *phProfileNames, unsigned short *pNameCnt, unsigned short *pSizeEach) = 0;
virtual void FreeHandle ( PMHandle aHandle) = 0;
};
#endif // __CICLRMGT_H